github.com/klauspost/compress/huff0.bitWriter.nBits (field)
13 uses
github.com/klauspost/compress/huff0 (current package)
bitwriter.go#L12: nBits uint8
bitwriter.go#L19: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L20: b.nBits += bits
bitwriter.go#L27: b.bitContainer |= uint64(enc.val) << (b.nBits & 63)
bitwriter.go#L33: b.nBits += enc.nBits
bitwriter.go#L41: sh := b.nBits & 63
bitwriter.go#L52: b.nBits += encA.nBits + encB.nBits
bitwriter.go#L67: b.bitContainer |= combined << (b.nBits & 63)
bitwriter.go#L68: b.nBits += bitsD
bitwriter.go#L73: if b.nBits < 32 {
bitwriter.go#L81: b.nBits -= 32
bitwriter.go#L87: nbBytes := (b.nBits + 7) >> 3
bitwriter.go#L91: b.nBits = 0
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |